import { Suspense } from "react"; import { Skeleton } from "@/components/ui/skeleton"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import VendorDocumentPage from "./vendor-document-page"; export const metadata = { title: "문서 조회 및 업로드", description: "협력업체 문서 조회 및 파일 업로드", }; // ============================================================================ // 로딩 스켈레톤 // ============================================================================ function VendorDocumentSkeleton() { return (
); } export default async function DocumentUploadPage({ searchParams, }: { searchParams: Promise<{ [key: string]: string | string[] | undefined }>; }) { const params = await searchParams; return (
{/* 헤더 */} 문서 조회 및 업로드 프로젝트별 할당된 문서를 조회하고 파일을 업로드할 수 있습니다. {/* 메인 컨텐츠 */} }>
); }